home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -serious- / misc / mmulib / contributions / sashimi / source / saferawputchar.asm next >
Assembly Source File  |  1999-11-29  |  389b  |  26 lines

  1. *
  2. * $Id: SafeRawPutChar.asm 1.1 1998/09/11 22:03:16 olsen Exp olsen $
  3. *
  4. * Sashimi -- intercepts raw serial debugging output on your own machine
  5. *
  6. * Written by Olaf `Olsen' Barthel <olsen@sourcery.han.de>
  7. * Public Domain
  8. *
  9. * :ts=8
  10. *
  11.  
  12.     section    text,code
  13.  
  14.     xref    _NewRawPutChar
  15.  
  16.     xdef    _SafeRawPutChar
  17.  
  18. _SafeRawPutChar:
  19.  
  20.     movem.l    a0-a1,-(sp)
  21.     bsr    _NewRawPutChar
  22.     movem.l    (sp)+,a0-a1
  23.     rts
  24.  
  25.     end
  26.